home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / pandawars.swf / scripts / frame_136 / PlaceObject2_159_216 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2007-03-20  |  872 b   |  38 lines

  1. onClipEvent(enterFrame){
  2.    timer += 1;
  3.    rot = this._rotation + 90;
  4.    this._x += Math.sin(rot * 3.141592653589793 / 180) * speed;
  5.    this._y -= Math.cos(rot * 3.141592653589793 / 180) * speed;
  6.    if(this.hitTest(_root.pandam.hit))
  7.    {
  8.       speed = 0;
  9.       _root.pandam.myColor.setRGB(16777062);
  10.       _root.pandam.hit.gotoAndPlay(2);
  11.       _root.pandam.life -= 5;
  12.       _root.lifeber._xscale -= 5;
  13.       this.gotoAndPlay(2);
  14.    }
  15.    if(_root.yuka.jimen.hitTest(_X,_Y,true) || _root.yuka.ten.hitTest(_X,_Y,true))
  16.    {
  17.       this.gotoAndPlay(2);
  18.    }
  19.    if(timer > 20)
  20.    {
  21.       this.removeMovieClip();
  22.    }
  23.    if(Key.isDown(65))
  24.    {
  25.       if(_root.yuka._x < 230)
  26.       {
  27.          this._x += _root.ido;
  28.       }
  29.    }
  30.    if(Key.isDown(68))
  31.    {
  32.       if(_root.yuka._x > -2830)
  33.       {
  34.          this._x -= _root.ido;
  35.       }
  36.    }
  37. }
  38.